Aiming
This event gets called when a player is aiming / free aiming
Event name
plouffe_lib:aimingArgs
1 : true if the player is aiming if he stopped aimingExample
AddEventHandler("plouffe_lib:aiming", function(state)
if state then
print("Player is free aiming")
else
print("Player stopped free aiming")
end
end)